home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / rcs / envopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-23  |  794 b   |  48 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    96.08.23.16.57.35;    author dlorre;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @EnvManager : Gestionnaire d'Environnement
  17. Auteur : Dominique Lorre
  18. @
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @#ifndef ENVOPT_H
  27. #define ENVOPT_H
  28.  
  29. #include <window.h>
  30. #include <gadgets/string.h>
  31. #include <gadgets/checkbox.h>
  32.  
  33. class optwindow : public window
  34. {
  35.     void fedit(gadget *g, ULONG classe, USHORT code) ;
  36.     void fimport(gadget *g, ULONG classe, USHORT code) ;
  37.     void fexport(gadget *g, ULONG classe, USHORT code) ;
  38. public:
  39.     string *scontents ;
  40.     checkbox *cglob ;
  41.     checkbox *carch ;
  42.     optwindow(short l, short t, short w, short h) : window(l,t,w,h) {}
  43.     void open(screen *ns) ;
  44.     void handlevkey(USHORT code) ;
  45. };
  46. #endif
  47. @
  48.